home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Unix / Shells / zsh / Source / help / while < prev    next >
Encoding:
Text File  |  1993-10-08  |  267 b   |  9 lines

  1.               while list
  2.               do list
  3.               done   Execute the do list as  long  as  the  while
  4.                      list returns a zero exit status.
  5.  
  6.               while ( list ) {
  7.               list
  8.               }      An alternate form of while.
  9.